overlapping$56657$ - перевод на итальянский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

overlapping$56657$ - перевод на итальянский

Overlapping subproblem

overlapping      
adj. che si sovrappone, sovrapposto; (fig) che coincide in parte
machine language         
SET OF INSTRUCTIONS EXECUTED DIRECTLY BY A COMPUTER'S CENTRAL PROCESSING UNIT (CPU)
Native code; Machine instruction; Machine Code; Machine language; Machine Language; Native applications; Native execution; Machine instruction (computing); Program machine code; Machine instructions; CPU instruction; CPU instructions; Opcode-level programming; Opcode level; Overlapping instructions; Overlapping instruction; Overlapping machine instructions; Overlapping machine instruction; Overlapping opcodes; Overlapping opcode; Overlapping opcode sequences; Overlapping opcode sequence; Overlapping op-codes; Overlapping op-code; Overlapping op-code sequences; Overlapping op-code sequence; Superpositioned code; Code superposition; Instruction overlapping; Code overlapping; Instruction scission; Opcode overlapping; Jump into the middle of instruction; Instruction overlapping technique; Jump in the middle; Jump into the middle of an instruction; Jumping into the middle of an instruction; Jumping into the middle of instruction; Code overlap; Overlapping code; Overlapped instruction encoding; Overlapped instruction; Overlapped instructions; Semantic code overlapping; Semantic overlapping (computing); Physical overlapping (computing); Physical code overlapping; Overlapped code; Code interleaving; Code outlining; Overlapping instruction sequences; Overlapping instruction sequence; Code-overlapping technique
linguaggio macchina
built up         
  • Patience or solitaire cards
  • Layout for ''The Carpet''
WIKIMEDIA GLOSSARY LIST ARTICLE
Solitaire/Terminology; Solitaire terminology; Built up; Glossary of solitaire; Foundation (cards); Foundation (solitaire); Glossary of solitaire terms; Glossary of Patience terms; Tableau (cards); Patience terminology; Patience glossary; Foundations (patience term); Pack (patience term); Card pack (patience term); Tableau (patience term); Talon (patience term); Space (patience term); Waste pile (patience term); Available (patience term); Out (patience term); Glossary of patience or solitaire terms; Layout (patience term); Descending sequence; Ascending sequence; Foundation card (patience term); Base card (patience term); Sequence (patience term); Family (patience term); Build (patience term); Glossary of patience or card solitaire terms; Re-deal (patience term); Wastepile (patience term); Stock (patience term); Reserve (solitaire term); Available (solitaire term); Foundation (solitaire term); Foundation card; Rank (solitaire term); Pile (solitaire term); Tableau (solitaire term); Built down; Play (solitaire term); Alternating colors; Wrapping (solitaire term); Waste pile (solitaire term); Column (solitaire term); Stock (solitaire term); Patience terms; Vacancy (patience term); Glossary of patience and solitaire terms; Base card; Depot (patience term); Reserve (patience term); Blocked (patience term); Grace (patience term); Row (patience term); Pile (patience term); Grace card; Reserve pile; Building (patience term); Wrap (patience term); Exposed card; Topmost card; Built up (patience term); Wing (patience term); Get out (patience term); Chockered; Redeal (patience term); Vacancies (patience term); Top card; Packing (patience term); Fan (patience term); Bases (patience term); Build down; Overlapping (patience term); Columns (patience term); Play (patience term); Game is out; Block (patience term); Uppermost card; Shuttling (patience term); Foundation (patience term); Marriage (patience term); Denomination (patience term); Rows (patience term); Spaces (patience term); Piles (patience term); Sequences (patience term); Alternating colour; Packed (patience term); Column (patience term); Rubbish-heap; Worrying back; Worry back; Families (patience term); Build up (patience term); Alternating color; Downcard (patience term); Beneath (patience term); Depots (patience term); Deal (patience term); Packet (patience term); Built (patience term); Rubbish heap (patience term); Getting it out; Row (solitaire term); Base (solitaire term); Base (patience term); Available card; Deal (solitaire term); Gap (solitaire term); Gap (patience term); Space (solitaire term); Wastepile (solitaire term); Depot (solitaire term); Stack (solitaire term); Stack (patience term); Pack (solitaire); Turning the corner
composto, fatto a strati; fabbricato, edificato, urbano

Определение

machine code
Machine code is a way of expressing instructions and information in the form of numbers which can be understood by a computer or microchip. (COMPUTING)
N-UNCOUNT

Википедия

Overlapping subproblems

In computer science, a problem is said to have overlapping subproblems if the problem can be broken down into subproblems which are reused several times or a recursive algorithm for the problem solves the same subproblem over and over rather than always generating new subproblems.

For example, the problem of computing the Fibonacci sequence exhibits overlapping subproblems. The problem of computing the nth Fibonacci number F(n), can be broken down into the subproblems of computing F(n − 1) and F(n − 2), and then adding the two. The subproblem of computing F(n − 1) can itself be broken down into a subproblem that involves computing F(n − 2). Therefore, the computation of F(n − 2) is reused, and the Fibonacci sequence thus exhibits overlapping subproblems.

A naive recursive approach to such a problem generally fails due to an exponential complexity. If the problem also shares an optimal substructure property, dynamic programming is a good way to work it out.